pubchem.reference Schema Extraction¶

This notebook extracts RDF schema from the pubchem.reference SPARQL endpoint. It attempts discovery of existing VoID (Vocabulary of Interlinked Datasets) metadata first, then generates VoID from queries if needed. All downstream outputs are generated from the VoID description.

Exports¶

  • JSON-LD Schema (primary output)
  • N-Quads RDF
  • VoID Graph
  • Coverage Report
  • LinkML Schema
  • Instance Data (subject index, object index, and instances in JSON Lines format)
InĀ [1]:
# Dataset Configuration
import os

# Dataset parameters
endpoint_url = "https://idsm.elixir-czech.cz/sparql/endpoint/idsm"
dataset_name = "pubchem.reference"
void_iri = "http://rdf.ncbi.nlm.nih.gov/pubchem/reference"
graph_uri = "http://rdf.ncbi.nlm.nih.gov/pubchem/reference"

# Setup paths
working_path = os.path.abspath("")
exports_path = os.path.join(
    working_path, "..", "..", "docs", "data", "schema_extraction", dataset_name
)
os.makedirs(exports_path, exist_ok=True)
InĀ [2]:
import logging
import sys

# Minimal notebook logger using existing dataset_name
logger = logging.getLogger(dataset_name or "notebook")
logger.setLevel(logging.DEBUG)  # Set to DEBUG to see SPARQL queries

# Also configure the rdfsolve.parser logger to see query details
parser_logger = logging.getLogger("rdfsolve.parser")
parser_logger.setLevel(logging.DEBUG)

# Avoid adding duplicate handlers if the cell is re-run
if not logger.handlers:
    fmt = logging.Formatter("%(asctime)s %(levelname)s %(name)s: %(message)s", "%Y-%m-%d %H:%M:%S")

    sh = logging.StreamHandler(sys.stdout)
    sh.setLevel(logging.DEBUG)  # Set to DEBUG to see all logs
    sh.setFormatter(fmt)
    logger.addHandler(sh)

    # Add the same handler to the parser logger
    parser_logger.addHandler(sh)

logger.info(f"Logging configured for {dataset_name}")
2026-01-16 14:59:39 INFO pubchem.reference: Logging configured for pubchem.reference
InĀ [3]:
# Import libraries
import json

# Configure Plotly for HTML output
import plotly.io as pio
import plotly.offline as pyo
from IPython.display import Markdown, display

# Import rdfsolve API functions
from rdfsolve.api import (
    discover_void_graphs,
    generate_void_from_endpoint,
    load_parser_from_graph,
    retrieve_void_from_graphs,
)
from rdfsolve.sparql_helper import SparqlHelper

# Enable query collection to track all SPARQL queries executed
SparqlHelper.enable_query_collection()

# Set renderer to 'notebook' for Jupyter, but ensure HTML export works
pio.renderers.default = "notebook+plotly_mimetype"

# Initialize offline mode for Plotly
pyo.init_notebook_mode(connected=True)
InĀ [4]:
# Pickle caching utilities
import os
import pickle


def save_cache(data, filename, cache_dir=None):
    """Save data to pickle cache."""
    if cache_dir is None:
        cache_dir = os.path.join(exports_path, "cache")
    os.makedirs(cache_dir, exist_ok=True)

    cache_path = os.path.join(cache_dir, f"{filename}.pkl")
    with open(cache_path, "wb") as f:
        pickle.dump(data, f)
    print(f"Cached data to: {cache_path}")
    return cache_path


def load_cache(filename, cache_dir=None):
    """Load data from pickle cache if it exists."""
    if cache_dir is None:
        cache_dir = os.path.join(exports_path, "cache")

    cache_path = os.path.join(cache_dir, f"{filename}.pkl")
    if os.path.exists(cache_path):
        with open(cache_path, "rb") as f:
            data = pickle.load(f)
        print(f"Loaded cached data from: {cache_path}")
        return data
    return None


def cache_exists(filename, cache_dir=None):
    """Check if cache file exists."""
    if cache_dir is None:
        cache_dir = os.path.join(exports_path, "cache")

    cache_path = os.path.join(cache_dir, f"{filename}.pkl")
    return os.path.exists(cache_path)
InĀ [5]:
# Cache management utilities
def list_cache_files(cache_dir=None):
    """List all cache files."""
    if cache_dir is None:
        cache_dir = os.path.join(exports_path, "cache")

    if not os.path.exists(cache_dir):
        print("No cache directory found")
        return []

    cache_files = [f for f in os.listdir(cache_dir) if f.endswith(".pkl")]
    print(f"Cache directory: {cache_dir}")
    for f in cache_files:
        file_path = os.path.join(cache_dir, f)
        size_mb = os.path.getsize(file_path) / (1024 * 1024)
        print(f"  {f} ({size_mb:.2f} MB)")
    return cache_files


def clear_cache(filename=None, cache_dir=None):
    """Clear specific cache file or all cache."""
    if cache_dir is None:
        cache_dir = os.path.join(exports_path, "cache")

    if filename:
        cache_path = os.path.join(cache_dir, f"{filename}.pkl")
        if os.path.exists(cache_path):
            os.remove(cache_path)
            print(f"Removed cache: {filename}")
        else:
            print(f"Cache not found: {filename}")
    else:
        # Clear all cache files
        if os.path.exists(cache_dir):
            import shutil

            shutil.rmtree(cache_dir)
            print("Cleared all cache files")
        else:
            print("No cache directory to clear")


# Show current cache status
list_cache_files()
No cache directory found
Out[5]:
[]

Cache Control¶

Use these cells to manage cached data. When testing new code changes, you may want to clear relevant cache files to force re-computation.

InĀ [6]:
# Clear specific cache files (uncomment lines as needed for testing)

# When testing new VoID discovery/generation:
# clear_cache(f"{dataset_name}_voidgraph")

# When testing JSON-LD generation (primary output):
# clear_cache(f"{dataset_name}_jsonld_schema")

# When testing frequency calculations:
# clear_cache(f"{dataset_name}_frequencies_basic")
# clear_cache(f"{dataset_name}_frequencies_with_instances")

# Clear everything:
clear_cache()

print("Cache control ready")
print("Note: VoID graph and JSON-LD are the primary caches")
No cache directory to clear
Cache control ready
Note: VoID graph and JSON-LD are the primary caches

VoID Discovery¶

InĀ [7]:
cache_key = f"{dataset_name}_voidgraph"
void_graph = load_cache(cache_key)

if void_graph is None:
    discovery_result = discover_void_graphs(
        endpoint_url, graph_uris=[graph_uri] if graph_uri else None
    )

    found_graphs = discovery_result.get("found_graphs", [])
    partitions = discovery_result.get("partitions", [])

    if found_graphs and partitions:
        print(f"Found {len(found_graphs)} VoID graphs with {len(partitions)} partitions")
        void_graph = retrieve_void_from_graphs(
            endpoint_url,
            found_graphs,
            graph_uris=[graph_uri] if graph_uri else None,
            partitions=partitions,
        )
        void_path = os.path.join(exports_path, f"{dataset_name}_discovered_void.ttl")
        void_graph.serialize(destination=void_path, format="turtle")
        print(f"Saved discovered VoID to: {void_path}")
    else:
        print("No VoID found, generating from endpoint...")
        void_graph = generate_void_from_endpoint(
            endpoint_url=endpoint_url,
            graph_uris=[graph_uri] if graph_uri else None,
            output_file=os.path.join(exports_path, f"{dataset_name}_generated_void.ttl"),
            counts=True,
            offset_limit_steps=300,
            exclude_graphs=True,
        )

    save_cache(void_graph, cache_key)
    print(f"Cached VoID graph ({len(void_graph)} triples)")
else:
    print(f"Loaded from cache ({len(void_graph)} triples)")

vp = load_parser_from_graph(void_graph, graph_uris=[graph_uri] if graph_uri else None)
2026-01-16 14:59:42 DEBUG rdfsolve.parser: Starting VoID partition discovery for https://idsm.elixir-czech.cz/sparql/endpoint/idsm
2026-01-16 14:59:42 INFO rdfsolve.parser: Discovering VoID partitions across all graphs
Query attempt 1/3 failed: 500 Server Error: 500 for url: https://idsm.elixir-czech.cz/sparql/endpoint/idsm?query=%0A++++++++PREFIX+void%3A+%3Chttp%3A%2F%2Frdfs.org%2Fns%2Fvoid%23%3E%0A++++++++PREFIX+void-ext%3A+%3Chttp%3A%2F%2Fldf.fi%2Fvoid-ext%23%3E%0A++++++++SELECT+DISTINCT+%3FsubjectClass+%3Fprop+%3FobjectClass+%3FobjectDatatype+%3Fg%0A++++++++WHERE+%7B%0A++++++++++GRAPH+%3Fg+%7B%0A++++++++++++%7B%0A++++++++++++++%3Fcp+void%3Aclass+%3FsubjectClass+%3B%0A++++++++++++++++++void%3ApropertyPartition+%3Fpp+.%0A++++++++++++++%3Fpp+void%3Aproperty+%3Fprop+.%0A++++++++++++++OPTIONAL+%7B%0A++++++++++++++++++%7B%0A++++++++++++++++++++++%3Fpp++void%3AclassPartition+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++++++++%7D+UNION+%7B%0A++++++++++++++++++++++%3Fpp+void-ext%3AdatatypePartition+%5B+void-ext%3Adatatype+%3FobjectDatatype+%5D+.%0A++++++++++++++++++%7D%0A++++++++++++++%7D%0A++++++++++++%7D+UNION+%7B%0A++++++++++++++%3Fls+void%3AsubjectsTarget+%5B+void%3Aclass+%3FsubjectClass+%5D+%3B%0A++++++++++++++++++void%3AlinkPredicate+%3Fprop+%3B%0A++++++++++++++++++void%3AobjectsTarget+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++%7D%0A++++++++++%7D%0A++++++++%7D%0A++++++++
Query attempt 2/3 failed: 500 Server Error: 500 for url: https://idsm.elixir-czech.cz/sparql/endpoint/idsm?query=%0A++++++++PREFIX+void%3A+%3Chttp%3A%2F%2Frdfs.org%2Fns%2Fvoid%23%3E%0A++++++++PREFIX+void-ext%3A+%3Chttp%3A%2F%2Fldf.fi%2Fvoid-ext%23%3E%0A++++++++SELECT+DISTINCT+%3FsubjectClass+%3Fprop+%3FobjectClass+%3FobjectDatatype+%3Fg%0A++++++++WHERE+%7B%0A++++++++++GRAPH+%3Fg+%7B%0A++++++++++++%7B%0A++++++++++++++%3Fcp+void%3Aclass+%3FsubjectClass+%3B%0A++++++++++++++++++void%3ApropertyPartition+%3Fpp+.%0A++++++++++++++%3Fpp+void%3Aproperty+%3Fprop+.%0A++++++++++++++OPTIONAL+%7B%0A++++++++++++++++++%7B%0A++++++++++++++++++++++%3Fpp++void%3AclassPartition+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++++++++%7D+UNION+%7B%0A++++++++++++++++++++++%3Fpp+void-ext%3AdatatypePartition+%5B+void-ext%3Adatatype+%3FobjectDatatype+%5D+.%0A++++++++++++++++++%7D%0A++++++++++++++%7D%0A++++++++++++%7D+UNION+%7B%0A++++++++++++++%3Fls+void%3AsubjectsTarget+%5B+void%3Aclass+%3FsubjectClass+%5D+%3B%0A++++++++++++++++++void%3AlinkPredicate+%3Fprop+%3B%0A++++++++++++++++++void%3AobjectsTarget+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++%7D%0A++++++++++%7D%0A++++++++%7D%0A++++++++
Query attempt 3/3 failed: 500 Server Error: 500 for url: https://idsm.elixir-czech.cz/sparql/endpoint/idsm?query=%0A++++++++PREFIX+void%3A+%3Chttp%3A%2F%2Frdfs.org%2Fns%2Fvoid%23%3E%0A++++++++PREFIX+void-ext%3A+%3Chttp%3A%2F%2Fldf.fi%2Fvoid-ext%23%3E%0A++++++++SELECT+DISTINCT+%3FsubjectClass+%3Fprop+%3FobjectClass+%3FobjectDatatype+%3Fg%0A++++++++WHERE+%7B%0A++++++++++GRAPH+%3Fg+%7B%0A++++++++++++%7B%0A++++++++++++++%3Fcp+void%3Aclass+%3FsubjectClass+%3B%0A++++++++++++++++++void%3ApropertyPartition+%3Fpp+.%0A++++++++++++++%3Fpp+void%3Aproperty+%3Fprop+.%0A++++++++++++++OPTIONAL+%7B%0A++++++++++++++++++%7B%0A++++++++++++++++++++++%3Fpp++void%3AclassPartition+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++++++++%7D+UNION+%7B%0A++++++++++++++++++++++%3Fpp+void-ext%3AdatatypePartition+%5B+void-ext%3Adatatype+%3FobjectDatatype+%5D+.%0A++++++++++++++++++%7D%0A++++++++++++++%7D%0A++++++++++++%7D+UNION+%7B%0A++++++++++++++%3Fls+void%3AsubjectsTarget+%5B+void%3Aclass+%3FsubjectClass+%5D+%3B%0A++++++++++++++++++void%3AlinkPredicate+%3Fprop+%3B%0A++++++++++++++++++void%3AobjectsTarget+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++%7D%0A++++++++++%7D%0A++++++++%7D%0A++++++++
SELECT failed after 3 tries
2026-01-16 14:59:46 INFO rdfsolve.parser: VoID discovery failed: Query failed after 3 attempts: 500 Server Error: 500 for url: https://idsm.elixir-czech.cz/sparql/endpoint/idsm?query=%0A++++++++PREFIX+void%3A+%3Chttp%3A%2F%2Frdfs.org%2Fns%2Fvoid%23%3E%0A++++++++PREFIX+void-ext%3A+%3Chttp%3A%2F%2Fldf.fi%2Fvoid-ext%23%3E%0A++++++++SELECT+DISTINCT+%3FsubjectClass+%3Fprop+%3FobjectClass+%3FobjectDatatype+%3Fg%0A++++++++WHERE+%7B%0A++++++++++GRAPH+%3Fg+%7B%0A++++++++++++%7B%0A++++++++++++++%3Fcp+void%3Aclass+%3FsubjectClass+%3B%0A++++++++++++++++++void%3ApropertyPartition+%3Fpp+.%0A++++++++++++++%3Fpp+void%3Aproperty+%3Fprop+.%0A++++++++++++++OPTIONAL+%7B%0A++++++++++++++++++%7B%0A++++++++++++++++++++++%3Fpp++void%3AclassPartition+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++++++++%7D+UNION+%7B%0A++++++++++++++++++++++%3Fpp+void-ext%3AdatatypePartition+%5B+void-ext%3Adatatype+%3FobjectDatatype+%5D+.%0A++++++++++++++++++%7D%0A++++++++++++++%7D%0A++++++++++++%7D+UNION+%7B%0A++++++++++++++%3Fls+void%3AsubjectsTarget+%5B+void%3Aclass+%3FsubjectClass+%5D+%3B%0A++++++++++++++++++void%3AlinkPredicate+%3Fprop+%3B%0A++++++++++++++++++void%3AobjectsTarget+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++%7D%0A++++++++++%7D%0A++++++++%7D%0A++++++++
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Discovery exception: EndpointError: Query failed after 3 attempts: 500 Server Error: 500 for url: https://idsm.elixir-czech.cz/sparql/endpoint/idsm?query=%0A++++++++PREFIX+void%3A+%3Chttp%3A%2F%2Frdfs.org%2Fns%2Fvoid%23%3E%0A++++++++PREFIX+void-ext%3A+%3Chttp%3A%2F%2Fldf.fi%2Fvoid-ext%23%3E%0A++++++++SELECT+DISTINCT+%3FsubjectClass+%3Fprop+%3FobjectClass+%3FobjectDatatype+%3Fg%0A++++++++WHERE+%7B%0A++++++++++GRAPH+%3Fg+%7B%0A++++++++++++%7B%0A++++++++++++++%3Fcp+void%3Aclass+%3FsubjectClass+%3B%0A++++++++++++++++++void%3ApropertyPartition+%3Fpp+.%0A++++++++++++++%3Fpp+void%3Aproperty+%3Fprop+.%0A++++++++++++++OPTIONAL+%7B%0A++++++++++++++++++%7B%0A++++++++++++++++++++++%3Fpp++void%3AclassPartition+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++++++++%7D+UNION+%7B%0A++++++++++++++++++++++%3Fpp+void-ext%3AdatatypePartition+%5B+void-ext%3Adatatype+%3FobjectDatatype+%5D+.%0A++++++++++++++++++%7D%0A++++++++++++++%7D%0A++++++++++++%7D+UNION+%7B%0A++++++++++++++%3Fls+void%3AsubjectsTarget+%5B+void%3Aclass+%3FsubjectClass+%5D+%3B%0A++++++++++++++++++void%3AlinkPredicate+%3Fprop+%3B%0A++++++++++++++++++void%3AobjectsTarget+%5B+void%3Aclass+%3FobjectClass+%5D+.%0A++++++++++++%7D%0A++++++++++%7D%0A++++++++%7D%0A++++++++
No VoID found, generating from endpoint...
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 14:59:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 14:59:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 14:59:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
2026-01-16 14:59:46 INFO rdfsolve.parser: Executing CONSTRUCT query: class_partitions
2026-01-16 14:59:46 DEBUG rdfsolve.parser: Query text:
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX void-ext: <http://ldf.fi/void-ext#>
CONSTRUCT {
    ?cp void:class ?class ;
        void:entities ?count .
}
WHERE {
    {
        SELECT ?class (COUNT(?s) AS ?count)
        WHERE {
            GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
                ?s a ?class
            }
        }
        GROUP BY ?class
        LIMIT 300
    }
    BIND(IRI(CONCAT('http://rdf.ncbi.nlm.nih.gov/pubchem/reference/void/class_partition_',
                   REPLACE(STR(?class), '[^a-zA-Z0-9_]', '_', 'g'))) AS ?cp)
}
2026-01-16 14:59:50 INFO rdfsolve.parser: Query class_partitions completed in 3.45s
2026-01-16 14:59:50 INFO rdfsolve.parser: Executing CONSTRUCT query: property_partitions
2026-01-16 14:59:50 DEBUG rdfsolve.parser: Query text:
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX void-ext: <http://ldf.fi/void-ext#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
CONSTRUCT {
    ?pp void:property ?property ;
        void:triples ?count ;
        void-ext:subjectClass ?subject_class ;
        void-ext:objectClass ?object_class .
}
WHERE {
    {
        SELECT ?property ?subject_class ?object_class (COUNT(*) AS ?count)
        WHERE {
            GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
                ?subject ?property ?object .
                ?subject rdf:type ?subject_class .
            }

            # Determine object class based on object type
            {
                BIND(rdfs:Literal AS ?object_class)
                FILTER(isLiteral(?object))
            }
            UNION
            {
                ?object rdf:type ?object_class .
                FILTER(isURI(?object))
            }
            UNION
            {
                BIND(rdfs:Resource AS ?object_class)
                FILTER(isURI(?object))
                FILTER NOT EXISTS { ?object rdf:type ?any_type }
            }
        }
        GROUP BY ?property ?subject_class ?object_class
        LIMIT 300
    }
    BIND(IRI(CONCAT('http://rdf.ncbi.nlm.nih.gov/pubchem/reference/void/property_partition_',
                   REPLACE(CONCAT(STR(?property), '_', STR(?subject_class), '_', STR(?object_class)), '[^a-zA-Z0-9_]', '_', 'g'))) AS ?pp)
}
2026-01-16 15:01:09 INFO rdfsolve.parser: Query property_partitions completed in 78.99s
2026-01-16 15:01:09 INFO rdfsolve.parser: Executing CONSTRUCT query: datatype_partitions
2026-01-16 15:01:09 DEBUG rdfsolve.parser: Query text:
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX void-ext: <http://ldf.fi/void-ext#>
CONSTRUCT {
    ?dp void-ext:datatypePartition ?datatype ;
        void:triples ?count .
}
WHERE {
    {
        SELECT ?datatype (COUNT(?s) AS ?count)
        WHERE {
            GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
                ?s ?p ?o .
                FILTER(isLiteral(?o))
                BIND(datatype(?o) AS ?datatype)
            }
        }
        GROUP BY ?datatype
    }
    BIND(IRI(CONCAT('http://rdf.ncbi.nlm.nih.gov/pubchem/reference/void/datatype_partition_',
                   REPLACE(STR(?datatype), '[^a-zA-Z0-9_]', '_', 'g'))) AS ?dp)
}
2026-01-16 15:02:29 INFO rdfsolve.parser: Query datatype_partitions completed in 80.10s
2026-01-16 15:02:29 INFO rdfsolve.parser: Successfully extracted 448 RDF triples
2026-01-16 15:02:29 DEBUG rdfsolve.parser: Enriching VoID graph with bioregistry prefixes
2026-01-16 15:02:29 DEBUG rdfsolve.parser: Collected 314 unique URIs from VoID graph
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: pubmed -> http://rdf.ncbi.nlm.nih.gov/pubchem/reference/
DEBUG:rdfsolve.parser:Bioregistry: pubmed -> http://rdf.ncbi.nlm.nih.gov/pubchem/reference/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
DEBUG:rdfsolve.parser:Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:32 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
DEBUG:rdfsolve.parser:Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: pubmed -> http://rdf.ncbi.nlm.nih.gov/pubchem/reference/
DEBUG:rdfsolve.parser:Bioregistry: pubmed -> http://rdf.ncbi.nlm.nih.gov/pubchem/reference/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: pubmed -> http://rdf.ncbi.nlm.nih.gov/pubchem/reference/
DEBUG:rdfsolve.parser:Bioregistry: pubmed -> http://rdf.ncbi.nlm.nih.gov/pubchem/reference/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
DEBUG:rdfsolve.parser:Bioregistry: ncit -> http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
DEBUG:rdfsolve.parser:Bioregistry: ndfrt -> http://purl.bioontology.org/ontology/NDFRT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
DEBUG:rdfsolve.parser:Bioregistry: snomedct -> http://purl.bioontology.org/ontology/SNOMEDCT/
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
DEBUG:rdfsolve.parser:Bioregistry: chebi -> http://purl.obolibrary.org/obo/CHEBI_
2026-01-16 15:02:33 INFO rdfsolve.parser: Discovered 7 prefixes
INFO:rdfsolve.parser:Discovered 7 prefixes
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Skipping void -> http://rdfs.org/ns/void# (already bound as void)
DEBUG:rdfsolve.parser:Skipping void -> http://rdfs.org/ns/void# (already bound as void)
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Skipping xsd -> http://www.w3.org/2001/XMLSchema# (already bound as xsd)
DEBUG:rdfsolve.parser:Skipping xsd -> http://www.w3.org/2001/XMLSchema# (already bound as xsd)
2026-01-16 15:02:33 INFO rdfsolve.parser: VoID description saved to /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/pubchem.reference_generated_void.ttl
INFO:rdfsolve.parser:VoID description saved to /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/pubchem.reference_generated_void.ttl
Cached data to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/cache/pubchem.reference_voidgraph.pkl
Cached VoID graph (448 triples)

Schema Discovery and Exports Workflow¶

Workflow Steps:¶

  1. VoID Discovery: Extract schema patterns from SPARQL endpoint VoID descriptions
  2. JSON-LD Generation: Convert to JSON-LD.
  3. Derived Outputs: All other formats are generated from the JSON-LD structure:
    • Frequencies: Schema pattern coverage analysis
    • LinkML: LinkML YAML used elsewhere for other features.
    • CSV/JSON: Tabular and structured data exports
    • RDF: N-Quads serialization for triplestore import
InĀ [8]:
# Primary JSON-LD schema export and basic summary
cache_key = f"{dataset_name}_jsonld_schema"
jsonld_schema = load_cache(cache_key)

if jsonld_schema is None:
    print("Generating JSON-LD schema...")
    jsonld_schema = vp.to_jsonld(filter_void_admin_nodes=True)
    save_cache(jsonld_schema, cache_key)
else:
    print("Loaded JSON-LD schema from cache")

# Save JSON-LD schema file
jsonld_file = os.path.join(exports_path, f"{dataset_name}_schema.jsonld")
with open(jsonld_file, "w", encoding="utf-8") as f:
    json.dump(jsonld_schema, f, indent=2, ensure_ascii=False)

print(f"JSON-LD Schema saved to: {jsonld_file}")

# Display combined JSON-LD structure info and schema summary
if "@graph" in jsonld_schema:
    print("\nSchema Summary:")
    print(f"   • Prefixes: {len(jsonld_schema['@context'])}")
    print(f"   • Resources: {len(jsonld_schema['@graph'])}")

    # Show dataset metadata
    dataset_info = jsonld_schema["@graph"][0] if jsonld_schema["@graph"] else {}
    if dataset_info.get("@type") == "void:Dataset":
        print(f"   • Dataset: {dataset_info.get('dcterms:title', 'Unknown')}")
        print(f"   • Classes: {dataset_info.get('void:classes', 0)}")
        print(f"   • Properties: {dataset_info.get('void:properties', 0)}")
        print(f"   • Triples: {dataset_info.get('void:triples', 0)}")

# Get schema DataFrame and show sample
schema_df = vp.to_schema(filter_void_admin_nodes=True)
print(f"\nSchema Patterns Preview ({len(schema_df)} total):")
display(schema_df.head())
Generating JSON-LD schema...
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:33 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
Cached data to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/cache/pubchem.reference_jsonld_schema.pkl
JSON-LD Schema saved to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/pubchem.reference_schema.jsonld

Schema Summary:
   • Prefixes: 5
   • Resources: 1
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:34 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:35 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
Schema Patterns Preview (300 total):

subject_class subject_uri property property_uri object_class object_uri
0 vocabulary:Reference http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... vocabulary:discussesAsDerivedByTextMining http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... chebi:23 http://purl.obolibrary.org/obo/CHEBI_23
1 vocabulary:Reference http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... vocabulary:discussesAsDerivedByTextMining http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... chebi:89 http://purl.obolibrary.org/obo/CHEBI_89
2 vocabulary:Reference http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... vocabulary:discussesAsDerivedByTextMining http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... ncit:C297 http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus...
3 vocabulary:Reference http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... vocabulary:discussesAsDerivedByTextMining http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... ncit:C372 http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus...
4 vocabulary:Reference http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... vocabulary:discussesAsDerivedByTextMining http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary... ncit:C628 http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus...

Schema Pattern Coverage Analysis¶

Calculate coverage ratios showing what percentage of entities use each relationship pattern.

InĀ [9]:
# Schema pattern coverage analysis and export
cache_key = f"{dataset_name}_frequencies_basic"
cached_data = load_cache(cache_key)

if cached_data is None:
    print("Calculating schema pattern frequencies...")
    frequencies_df, _ = vp.count_schema_shape_frequencies(
        endpoint_url=endpoint_url,
        offset_limit_steps=300,
    )
    save_cache(frequencies_df, cache_key)
else:
    print("Loaded frequencies DataFrame from cache")
    frequencies_df = cached_data

# Export coverage analysis
frequencies_output_path = os.path.join(exports_path, f"{dataset_name}_pattern_coverage.csv")
exported_df = vp.export_schema_shape_frequencies(
    frequencies_df, output_file=frequencies_output_path
)

# Combined summary and sample
if not frequencies_df.empty:
    avg_coverage = frequencies_df["coverage_percent"].mean()
    high_coverage = (frequencies_df["coverage_percent"] > 50).sum()

    print("\nPattern Coverage Analysis:")
    print(f"   • Total patterns: {len(frequencies_df)}")
    print(f"   • Average coverage: {avg_coverage:.1f}%")
    print(f"   • High coverage (>50%): {high_coverage}")
    print(f"   • Exported to: {frequencies_output_path}")

    print("\nSample Coverage Data:")
    display(
        frequencies_df[["subject_class", "property", "object_class", "coverage_percent"]].head()
    )

    print("\nCoverage Statistics:")
    display(frequencies_df["coverage_percent"].describe())
else:
    print("No frequency data available")
Calculating schema pattern frequencies...
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:36 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:37 INFO rdfsolve.parser: Using chunked pagination for entity counts (step size: 300)
INFO:rdfsolve.parser:Using chunked pagination for entity counts (step size: 300)
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:37 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:37 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Chunked entity count: chunk 1, rows=1, total=1
DEBUG:rdfsolve.parser:Chunked entity count: chunk 1, rows=1, total=1
2026-01-16 15:02:38 INFO rdfsolve.parser: Chunked entity counting complete: 1 chunks, 1 total results
INFO:rdfsolve.parser:Chunked entity counting complete: 1 chunks, 1 total results
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
Cached data to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/cache/pubchem.reference_frequencies_basic.pkl
Pattern Coverage Analysis:
   • Total patterns: 300
   • Average coverage: 0.0%
   • High coverage (>50%): 0
   • Exported to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/pubchem.reference_pattern_coverage.csv

Sample Coverage Data:
subject_class property object_class coverage_percent
299 vocabulary:Reference vocabulary:discussesAsDerivedByTextMining snomedct:710809001 0.0
0 vocabulary:Reference vocabulary:discussesAsDerivedByTextMining chebi:23 0.0
1 vocabulary:Reference vocabulary:discussesAsDerivedByTextMining chebi:89 0.0
2 vocabulary:Reference vocabulary:discussesAsDerivedByTextMining ncit:C297 0.0
3 vocabulary:Reference vocabulary:discussesAsDerivedByTextMining ncit:C372 0.0
Coverage Statistics:
count    300.0
mean       0.0
std        0.0
min        0.0
25%        0.0
50%        0.0
75%        0.0
max        0.0
Name: coverage_percent, dtype: float64

Schema Pattern Instance Collection¶

Collect actual subject and object IRI instances for each schema pattern. This provides detailed access to the specific entities participating in each relationship pattern.

InĀ [10]:
# Collect both frequency data and actual instances with caching
cache_key = f"{dataset_name}_frequencies_with_instances"
cached_data = load_cache(cache_key)

if cached_data is None:
    print("Collecting frequency data and instances...")
    frequencies_with_instances_df, instances_df = vp.count_schema_shape_frequencies(
        endpoint_url=endpoint_url,
        # sample_limit=100,  # Limited sample for demonstration
        collect_instances=True,
        offset_limit_steps=300,
    )
    # Cache both DataFrames as a tuple
    save_cache((frequencies_with_instances_df, instances_df), cache_key)
else:
    print("Loaded frequencies and instances DataFrames from cache")
    frequencies_with_instances_df, instances_df = cached_data

# Display basic information about the data structure
print(f"Frequencies DataFrame: {len(frequencies_with_instances_df)} shapes")
if instances_df is not None:
    print(f"Instances DataFrame: {len(instances_df)} relationships")
    print(f"Memory usage: {instances_df.memory_usage(deep=True).sum() / 1024 / 1024:.1f} MB")

    # Export instances in compact format
    instances_prefix = os.path.join(exports_path, f"{dataset_name}_instances")
    export_result = vp.export_instances_compact(instances_df, instances_prefix)
    print(f"Exported instances: {export_result['total_relationships']} relationships")
    print(f"   • Subject index: {export_result['total_subjects']} unique subjects")
    print(f"   • Object index: {export_result['total_objects']} unique objects")
    print(
        f"   • Total size: {sum([export_result['subject_index_size_mb'], export_result['object_index_size_mb'], export_result['instances_jsonl_size_mb']]):.2f} MB"
    )
else:
    print("No instances collected")
Collecting frequency data and instances...
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:49 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:02:50 INFO rdfsolve.parser: Using chunked pagination for entity counts (step size: 300)
INFO:rdfsolve.parser:Using chunked pagination for entity counts (step size: 300)
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:50 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:50 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Chunked entity count: chunk 1, rows=1, total=1
DEBUG:rdfsolve.parser:Chunked entity count: chunk 1, rows=1, total=1
2026-01-16 15:02:52 INFO rdfsolve.parser: Chunked entity counting complete: 1 chunks, 1 total results
INFO:rdfsolve.parser:Chunked entity counting complete: 1 chunks, 1 total results
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:02:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:02:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:03 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.ncbi.nlm.nih.gov/pubchem/reference']
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.ncbi.nlm.nih.gov/pubchem/reference> {
2026-01-16 15:03:03 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
Cached data to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/cache/pubchem.reference_frequencies_with_instances.pkl
Frequencies DataFrame: 300 shapes
No instances collected
InĀ [11]:
# Export instances in compact format
if instances_df is not None:
    instances_prefix = os.path.join(exports_path, f"{dataset_name}_instances")
    export_result = vp.export_instances_compact(instances_df, instances_prefix)
    print(f"\nExported instances: {export_result['total_relationships']} relationships")
    print(f"   • Subject index: {export_result['total_subjects']} unique subjects")
    print(f"   • Object index: {export_result['total_objects']} unique objects")
    print(
        f"   • Total size: {sum([export_result['subject_index_size_mb'], export_result['object_index_size_mb'], export_result['instances_jsonl_size_mb']]):.2f} MB"
    )
InĀ [12]:
import pandas as pd
import plotly.graph_objects as go

if not frequencies_with_instances_df.empty:
    df = frequencies_with_instances_df.copy()
    df["coverage_percent"] = pd.to_numeric(df["coverage_percent"], errors="coerce").fillna(0)
    df = df.sort_values("coverage_percent", ascending=False).reset_index(drop=True)

    def make_label(row):
        return (
            f"<b>{row['subject_class']}</b> "
            f"<span style='color:#888;'></span> "
            f"<i>{row['property']}</i> "
            f"<span style='color:#888;'></span> "
            f"<b>{row['object_class']}</b>"
        )

    df["styled_label"] = df.apply(make_label, axis=1)

    text_positions = ["outside" if v < 95 else "inside" for v in df["coverage_percent"]]
    custom_colorscale = [
        [0.0, "#d36e61"],
        [0.4, "#e5cdbd"],
        [0.7, "#e8e4cf"],
        [1.0, "#c3d9c0"],
    ]

    # Figure sizing
    bar_height = 26
    fig_height = min(2000, bar_height * len(df) + 200)

    fig = go.Figure(
        go.Bar(
            x=df["coverage_percent"],
            y=df["styled_label"],
            orientation="h",
            text=[f"{v:.1f}%" for v in df["coverage_percent"]],
            textposition=text_positions,
            marker={
                "color": df["coverage_percent"],
                "colorscale": custom_colorscale,
                "cmin": 0,
                "cmax": 100,
                "line": {"color": "white", "width": 0.6},
            },
            hovertemplate="<b>%{y}</b><br>Coverage: %{x:.1f}%<extra></extra>",
        )
    )

    fig.update_layout(
        title={
            "text": f"Schema Pattern Coverage for {dataset_name}",
            "x": 0.5,
            "font": {"size": 18},
        },
        xaxis={
            "title": "Coverage (%)",
            "range": [0, 100],  # fixed x-axis range
            "ticksuffix": "%",
            "showgrid": True,
            "gridcolor": "rgba(220,220,220,0.3)",
        },
        yaxis={
            "title": "",
            "autorange": "reversed",
            "automargin": True,
            "fixedrange": False,  # allow vertical zoom/pan
        },
        template="plotly_white",
        autosize=True,  # allow figure to scale with container
        height=fig_height,  # base height (will scale)
        margin={"t": 80, "b": 50, "l": 480, "r": 150},  # extra right margin for text
        plot_bgcolor="white",
        paper_bgcolor="white",
    )

    # Disable horizontal zoom/pan
    fig.update_xaxes(fixedrange=True)

    # Show figure with config for HTML export compatibility
    fig.show(
        config={
            "scrollZoom": True,
            "responsive": True,
            "toImageButtonOptions": {
                "format": "png",
                "filename": f"{dataset_name}_schema_coverage",
                "height": fig_height,
                "width": 600,
                "scale": 1,
            },
        }
    )

else:
    display(Markdown("**No coverage data to visualize**"))

LinkML (derived from JSON-LD)¶

InĀ [13]:
# Generate LinkML directly from JSON-LD with custom schema URI
print("Regenerating LinkML schema from JSON-LD with custom schema URI...")

schema_name = f"{dataset_name}_schema"
custom_schema_uri = (
    f"http://jmillanacosta.github.io/rdfsolve/{dataset_name}/linkml"  # User-definable base URI
)

yaml_text = vp.to_linkml_yaml(
    schema_name=schema_name,
    schema_description=f"LinkML schema for {dataset_name} generated from JSON-LD",
    schema_base_uri=custom_schema_uri,
    filter_void_nodes=True,
)

# Save to LinkML YAML
linkml_file = os.path.join(exports_path, f"{dataset_name}_linkml_schema.yaml")
with open(linkml_file, "w", encoding="utf-8") as f:
    f.write(yaml_text)

print(f"LinkML YAML saved to: {linkml_file}")
Regenerating LinkML schema from JSON-LD with custom schema URI...
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:03 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:04 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
LinkML YAML saved to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/pubchem.reference_linkml_schema.yaml
InĀ [14]:
from linkml.generators.erdiagramgen import ERDiagramGenerator
from linkml_runtime.utils.schemaview import SchemaView

sv = SchemaView(linkml_file)
linkml_schema = sv.schema

display(
    Markdown(
        f"**Parsed LinkML schema:** Classes = {len(sv.all_classes())}, Slots = {len(sv.all_slots())}"
    )
)

# Build and display a Mermaid class diagram for the aopwikirdf LinkedML
mermaid_code = ERDiagramGenerator(linkml_file).serialize()

display(Markdown(mermaid_code))

Parsed LinkML schema: Classes = 2, Slots = 1

erDiagram
Chebi23 {

}
VocabularyReference {

}

VocabularyReference ||--|o Chebi23 : "vocabulary_discusses_As_Derived_By_Text_Mining"
InĀ [15]:
json_path = os.path.join(exports_path, f"{dataset_name}_schema.json")
csv_path = os.path.join(exports_path, f"{dataset_name}_schema.csv")

# Export CSV from frequencies
frequencies_df.to_csv(csv_path, index=False)

# Export JSON derived from JSON-LD (maintains consistency)
with open(json_path, "w", encoding="utf-8") as fh:
    json.dump(vp.to_json(filter_void_nodes=True), fh, indent=2)

print(f"CSV exported to: {csv_path}")
print(f"JSON exported to: {json_path}")
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:05 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:06 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#Reference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 15:03:07 DEBUG rdfsolve.parser: Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://rdf.ncbi.nlm.nih.gov/pubchem/vocabulary#discussesAsDerivedByTextMining: 'in <string>' requires string as left operand, not NoneType
CSV exported to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/pubchem.reference_schema.csv
JSON exported to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/pubchem.reference_schema.json
InĀ [16]:
# Export collected SPARQL queries as TTL
queries_path = os.path.join(exports_path, f"{dataset_name}_sparql_queries.ttl")
queries = SparqlHelper.get_collected_queries()

if queries:
    ttl_content = SparqlHelper.export_queries_as_ttl(
        output_file=queries_path,
        base_uri=f"https://github.com/jmillanacosta/rdfsolve/sparql/{dataset_name}/",
        dataset_name=dataset_name,
    )
    print(f"Exported {len(queries)} SPARQL queries to: {queries_path}")
else:
    print("No SPARQL queries were collected")
Exported 605 SPARQL queries to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/pubchem.reference/pubchem.reference_sparql_queries.ttl